home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 07 - 1991 / 07.02 Feb 91 / xserial source ƒ / s_copy.c < prev    next >
Encoding:
Text File  |  1989-12-09  |  75 b   |  10 lines  |  [TEXT/KAHL]

  1. /* s_copy */
  2.  
  3. s_copy(d,s)
  4.     char    *d;
  5.     char    *s;
  6. {
  7.     while (*d++ = *s++)
  8.         ;
  9. }
  10.